home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / library / shutdown.lzh / shutdown / src / shutdown_cmd.h < prev    next >
C/C++ Source or Header  |  1995-10-24  |  935b  |  41 lines

  1. /*
  2.    shutdown_cmd.h
  3.  
  4.    (c) Copyright 1995 SHW Wabnitz
  5.    Written by Bernhard Fastenrath (fasten@shw.com)
  6.  
  7.    This file may be distributed under the terms
  8.    of the GNU General Public License.
  9. */
  10.  
  11. #include <exec/types.h>
  12. #include <exec/lists.h>
  13. #include <exec/nodes.h>
  14. #include <exec/memory.h>
  15. #include <dos/dos.h>
  16. #include <dos/dosextens.h>
  17. #include <dos/filehandler.h>
  18.  
  19. #include <proto/exec.h>
  20. #include <proto/dos.h>
  21.  
  22. #define UMNT_INHIBIT  0x0
  23. #define UMNT_READONLY 0x1
  24. #define UMNT_REMOUNT  0x2
  25.  
  26. #define HFLG_REBOOT   0x0
  27. #define HFLG_HALT     0x1
  28. #define HFLG_EXIT     0x2
  29.  
  30. typedef struct List List;
  31. typedef struct Node Node;
  32. typedef struct MinNode MinNode;
  33. typedef struct MsgPort MsgPort;
  34. typedef struct Message Message;
  35. typedef struct StandardPacket StandardPacket;
  36. typedef struct DevProc DevProc;
  37. typedef struct DosInfo DosInfo;
  38. typedef struct DeviceNode DeviceNode;
  39. typedef struct RootNode RootNode;
  40. typedef struct Task Task;
  41.